--Process MU according to attribute
--Determines the processing time of a station according to an attribute of the MU.
--Determines the processing time of a station according to an attribute of the MU
--@ is the MU that triggers the control
--? is the station calling this method
do
if @.attribute=value then
	?.procTime:=time;
	-- add your code here
elseif @.attribute=value then
	?.procTime:=time;
	-- add your code here
else
	-- add your code here
end;
/*attribute:Enter the attribute being inspected.
value:Enter the value for the inspected attribute of the MU.
time:Enter the processing time to be set for the station.
*/